介紹有幾種基本的python data types
Text Type
string 字串
x = "Hello World"	#str	
Numeric Types
int 整数
x = 150	#int	
float 浮點數
x=0.35 #float
Sequence Types
List 列表
x = ["apple", "banana", "cherry"]	#list	
Tuple 元組
x = ("apple", "banana", "cherry")	tuple	
dict 字典
x = {"name" : "John", "age" : 36}	dict